home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / Makefile < prev    next >
Makefile  |  1994-08-01  |  498b  |  22 lines

  1. #!smake
  2. #
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. # Libraries to link with to get the GL (-lsun is necessary for correct
  6. # remote graphics operation when running NIS).
  7.  
  8. TARGETS  = ideas
  9. LLDLIBS = -lgl -lm
  10. CFILES = a.c b.c d.c e.c f.c h.c i.c m.c n.c o.c p.c r.c s.c t.c w.c \
  11.     draw_holder.c draw_lamp.c draw_logo.c draw_logo_line.c \
  12.     draw_logo_shadow.c track.c
  13. HFILES = objects.h
  14.  
  15. default all: $(TARGETS)
  16.  
  17. include ${COMMONRULES}
  18.  
  19. ${TARGETS}: ${OBJECTS}
  20.     ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
  21.